:root {
    --bg-color: rgba(22, 21, 19, 1);
    --header: rgba(34, 34, 34, 1);
    --footer: rgba(25, 25, 25, 1);
    --white: #ffffff; 
    --degrade-primario: linear-gradient(0%, #FFFFFF, #FFFFFF);
    --gris: #C5C5C5;
    --degrade-principal: linear-gradient(0%, #FF8660, 100%, #9A33FF);

}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
   /* header y algun que otro texto:  font-family: "Plus Jakarta Sans", sans-serif;*/ 
    font-family: "Poppins", sans-serif;
    background-color: var(--bg-color);
    color: var(--white);
}


header {
    background-color: var(--header);
    color: var(--white);
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    width: 100%;
}
header h1{
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 25px;
}
header nav a{
    color: var(--white);
    text-decoration: none;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600; /*pertenece a SemiBold*/
    font-size: 16px;
    margin: 0 15px; /* hace la separación entre elementos */ 
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}
header nav a:hover{
    color: #f057ba;
}
header nav a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #FF8660, #9A33FF);
    transition: width 0.3s ease;
    border-radius: 2px;
}
header nav a:hover::after{
    width: 100%;
}



main {
    /*background-color: aquamarine;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 20%;
}


.hero {
    height: 75vh;
    /*background-color: beige;*/
}
.hero img {
    width: 20%;
    margin: 3% 0;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    border-width: 0.5cap;
    border-style: outset;
    background: linear-gradient(90deg, #FF8660, #9A33FF);
    background-clip: padding-box;
    padding: 3px;

}
.gradient-text {
    background: linear-gradient(150deg, #FF8660 20%, #9A33FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}
.gradient-text .break {
    display: block;
}
.text-arriba {
    background: linear-gradient(90deg, #FFFFFF 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}
.text-arriba .parte-dos {
    display: block;
}
.text-abajo {
    color: var(--gris);
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1;
}
.text-abajo .parte-dos{
    display: block;
}


.section-about {
   /* background-color: rgb(56, 88, 88);/*/
    height: 60vh;
    margin: 30px 50px;
    padding: 20px;
}
.gradient-text-about-me {
    background: linear-gradient(150deg, #FF8660 20%, #9A33FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
}
.about-me p {
    background: linear-gradient(90deg, #FFFFFF 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;   
}

.btn {
    /*background-color: antiquewhite;*/
    margin: 20px 0;
  
}
button {
    background-color: #ffffff;
    border-radius: 50px;
    padding: 20px 30px;
    width: 160px;
    cursor: pointer;
    border-style: none;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s;
  
}
button:hover{
    background-color: #d2d2d2;
}
.btn a {
    margin: 0 15px;
    text-decoration: none;

}


.section-skills {
    /*background-color: navy;*/
    margin: 40px 0;
    padding: 20px 40px;
    height: 40vh;
}
.gradient-text-skills {
    background: linear-gradient(150deg, #FF8660 20%, #9A33FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}
.section-skills img {
    height: 25%;
    margin: 10px 30px;
}


.section-projects {
    /*background-color: maroon;*/
    margin: 20px 0;
    padding: 20px 0;
    height: 110vh;
    width: 110vh;
}
.gradient-text-projects {
    background: linear-gradient(150deg, #FF8660 20%, #9A33FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}
.project-card-container {
    
    /*background-color: #FF8660;*/
    display: grid;
    justify-content:center;
    align-items: flex-start;
    gap: 5vh;
    grid-template-columns: 50vh 50vh;
    grid-template-rows: 40vh;
    padding: 10px 0;
    margin: 10px 0;
}
.project-card {
    background-color: #2A2A2A;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    border-radius: 15px;
    height: 38vh;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}
.project-card:hover{
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 4px 15px rgba(208, 96, 169, 1);
}
.project-card img {
    height: auto;
    width: 100%;
}
.card-info {
    /*background-color: mediumslateblue;*/
    padding: 5px 10px;
    display:inline-flex;
    justify-content: space-between;
    align-items: center;
}
.card-info a {
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    margin: 0 0;
    text-align: left;
}
.card-info img {
    /*background-color: magenta;*/
    height: 15px;
}


footer {
    justify-content: flex-start;
    text-align: center;
    width: 100%;
    line-height: 1.6;
} 
.section-contact {
    background-color: var(--footer);
    text-align: left;
    padding: 10vh 20vh;
}
.section-contact h1 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 10px;
}
.section-contact p {
    color: var(--gris);
    text-decoration: none;
    font-weight: 400;
}
.section-contact .email {
  /*background-color: #d2d2d2;*/
  display: flex;
  align-items: center;  /* Centra verticalmente ícono y texto */
  gap: 8px;             /* Espacio entre ícono y texto */
  width: 55vh;          
}

.rrss-icons {
    height: 25%;
    margin-top: 10px;
}




